home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / oleauttr.zip / XLOLE5.ZIP / README.TXT < prev    next >
Text File  |  1996-01-06  |  1KB  |  22 lines

  1. This example illustrates controlling Microsoft Excel, Version 5,
  2. as an OLE server running within a Delphi TOLEContainer component.
  3. It starts up with Excel running.  When you click outside the
  4. TOLEContainer, Excel continues to run but is not visible.  If
  5. you then click the SaveAs... button, a new Workbook is created,
  6. the contents of the edit box are inserted as the value of the
  7. upper left cell, and Excel saves the worksheet under a name
  8. you are asked to specify.
  9.  
  10. It illustrates interesting techniques: writing nested "mirror
  11. classes", automatic allocation and deallocation of nested
  12. objects, and the use of the TOLEObject.GetObject(ProgID : String)
  13. constructor to "hook into" a running instance.
  14.  
  15. NOTE:  This example WILL NOT WORK if you are running Excel 7
  16. (the 32-bit Office 95 application) under Windows 95.  This
  17. is not a limitation of the TOLEAutoClient component, but
  18. appears to be due to a problem with the way Delphi's own
  19. TOLEContainer operates under Windows 95 with 32-bit servers.
  20.  
  21.  
  22.